@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --white: #FFFFFF;
    --red: #FF3030;
    --black: #333333;
    --dark-grey: #AAAAAA;
    --grey: #D5D5D5;
    --light-grey: #F5F5F5;
  }

body{
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-color: var(--white);
    display:flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    min-height:100vh;
}

a,a:hover,a:visited,a:active{
    text-decoration: none;
    color: inherit;
}

.container{
    display: flex;
    flex-direction: row;
}

.left{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.me{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 250px;
}

.logo{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 180px;
    border-radius: 180px;
    background-color: var(--red);
    transition: all 0.2s;
}

.logo img{
    width: 100px;
    height: 100px;
    transition: transform 0.5s;
}

.logo:hover img{
    transform: scale(1.6);
}

.name{
    font-size: 30px;
    font-weight: 700;
    margin-top: 10px;
}

.title{
    color: var(--dark-grey);
    font-size: 21.5px;
}

.right{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:flex-start;
}

menu{
    font-size: 20px;
    width: 250px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 70px;
}

menu .item{
    margin: 10px;
    transition: all 0.2s;
    width: fit-content;
}

menu .item:hover{
    padding-left: 15px;
    color: var(--red);
}

.youtube{
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

a.youtube-link{
    display: flex;
    flex-direction: row;
    align-items: center;
    color: var(--red);
    font-weight: 600;
    transition: color 0.2s;
}

a.youtube-link:hover{
    color: var(--black);
}

.youtube-logo{
    width: 25px;
    margin-left: 5px;
}

.social{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 50px;
}

.social .item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--dark-grey);
    width: 40px;
    height: 40px;
    border-radius: 45px;
    margin: 10px;
}

.social .item:hover{
    background-color: var(--red);
    transition: all 0.2s;
}

@media only screen and (max-width: 768px) {
    .container{
        margin-top: 30px;
        flex-direction: column;
    }

    .left{
        width: 100%;
        align-items: center;
    }
    
    .right{
        width: 100%;
        margin-top: 20px;
        align-items:center;
    }

    menu{
        margin-left: 0px;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0px;
    }

    .youtube{
        flex-direction: column;
    }

    .social .item{
        margin: 5px;
    }
}