html {
    font-size: 16px;
}
    
body {
    margin: 0cm;
    background-image: linear-gradient(to right top, #ffffff, #f3f2fd, #e4e6fa, #d4daf9, #c2cff7, #b6cef6, #aaccf3, #9dcbf0, #9fd0ea, #a6d5e3, #b1d8dd, #bedad9);
    font-family: 'Source Sans Pro', sans-serif;
}
* {
    box-sizing: border-box;
}
.container {
    width: 70vw;
    min-width: 576px;
    max-width: 992px;
    margin: 0px auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;

}
main {
    flex-grow: 1;
    padding: 20px;
    text-align: justify;
}
header > a:first-child {
    font-size: 30px;
    font-weight: 500;
    margin-right: auto;
}
header {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 30px 20px 10px 20px;
    font-size: 24px;
}
a {
    color: black;
    text-decoration: none;
}
main > h2 {
    font-size: 26px;
}
footer {
    display: flex;
    justify-content: center;
    align-items: center;
}
span {
    margin: 5px;
}
footer > a:first-child {
    font-size: 18px;
}
a > #t {
    font-size: 14px;
}
img {
    width: 200px;
    border-radius: 10px;
    box-shadow: 0 0 10px gray;
    border: 5px solid rgb(240, 232, 238);
}
.img {
    margin: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: space-between;
}