* {
    font-family: 'Roboto', sans-serif;
}
body {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: radial-gradient(circle, rgba(63,94,251,1) 0%, rgba(252,70,107,1) 100%); 
}

main {
    display: flex;
    flex-direction: column;
}
#container {
    text-align: center;
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
img {
    margin-top: 2rem;
    border-radius: 50%;
    width: 10rem;
    height: 10rem;
    object-fit: cover;
}
h1 {
    font-size: 2.5rem;
    font-weight: 400;
    color: white;
}
p {
    font-size: 1rem;
    color: white;
    font-weight: 100;
    margin: 0.5rem;
}
.links {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.links a {
    border: 1px white solid;
    width: 15rem;
    border-radius: 0.5rem;
    background-color: white;
    text-decoration: none;
    font-weight: 300;
    font-size: 1.5rem;
    padding: 0.5rem;
    position: relative;
}
.links a img{
    width: 28px;
    height: auto;
    margin: 0;
    border-radius: 0;
}
a:hover {
    background-color: #f24773;
    border: 1px #f24773 solid;
    color: white;
}

span {
    position: absolute;
    left: 1rem;
}
footer {
    margin-top: auto;
    font-size: 1rem;
    text-align: center;
    color: white;
    padding-bottom: 0.5rem;
    font-size: 0.8rem;
}
footer a {
    color: white;
    text-decoration: none;

}
footer a:hover {
    background-color: transparent;
    border: none;
    color: #f24773;
}
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}

/* Links */
#monica {
    font-size: 1rem;
}