* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Prompt', sans-serif;
    color: white;
    background: #1d2024;
    overflow: hidden;
}

.container {
    margin: auto;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container > .avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #2d323b;
    border: 10px solid #ffffff07;
}

.container > .avatar > img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.container > .name {
    margin-top: 10px;
    font-size: 30px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container > .name > a {
    font-size: 55px;
    font-weight: 1000;
    margin-left: 5px;
    margin-right: 5px;
    text-decoration: none;
    color: white;
}

.container > .name > p > a {
    font-size: 50px;
    cursor: pointer;
}

.container > .about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    width: 800px;
}

.container > .about > p {
    font-size: 25px;
    font-weight: 500;
    margin-left: 5px;
    margin-right: 5px;
    white-space: wrap;
    text-align: center;
}

.container > .projects {
    font-size: 25px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container .projects > a {
    font-size: 55px;
    margin-left: 10px;
    margin-right: 10px;
    cursor: pointer;
    transition: 0.5s;
    text-decoration: none;
}

.container > .projects > a > i {
    font-size: 35px;
    cursor: pointer;
    transition: 0.5s;
}

.container > .projects > a > i:hover {
    font-size: 40px;
}

.container > .socials {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container > .socials > a {
    font-size: 20px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 5px 15px;
    cursor: pointer;
    background-color: #3a3d4171;
    border-radius: 5px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-decoration: none;
    color: rgb(221, 221, 221);
}

.container > .socials > a > i {
    margin-right: 10px;
}

.container > .socials > p:hover {
    background-color: #3a3d41;
}

@media screen and (max-width: 768px) {
    .container > .about {
        width: 100%;
        max-width: 300px;
    }
    .container > .avatar {
        width: 150px;
        height: 150px;
    }
    .container > .name {
        font-size: 25px;
    }
    .container > .name > p {
        font-size: 50px;
    }
    .container > .name > p > i {
        font-size: 45px;
    }
    .container > .about > p {
        font-size: 20px;
    }
    .container > .projects {
        font-size: 20px;
    }
    .container > .projects > p {
        font-size: 50px;
    }
    .container > .projects > p > i {
        font-size: 30px;
    }
    .container > .socials > p {
        font-size: 15px;
    }
}