* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    background: radial-gradient(circle, #000000, #1c1c1e);
    color: #fff;
}

.container {
    text-align: center;
    max-width: 80vw;
}

.container .avatar {
    border-radius: 50%;
    border: 5px solid #50C878;
    margin-bottom: 10px;
}

.container h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.container p {
    font-size: 20px;
    margin-bottom: 10px;
}

.container .socials,
.container .contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.container .socials span,
.container .contact span {
    color: #778899;
    font-size: 20px;
}

.container .socials a {
    color: #fff;
    font-size: 40px;
    transition: opacity 0.2s ease;
}

.container .contact a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.container .socials a:hover, .container .contact a:hover {
    opacity: 0.6;
}

@media (max-width: 600px) {
    .container .avatar {
        height: 80%;
        width: 80%;
    }

    .container .contact {
        display: block;
    }
}
