*{
    box-sizing: border-box;
}

body{
    font-family: Lato, sans-serif;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
    gap: 120px;
}

section.hero {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

h1{
    font-weight: 900;
    font-size: 90px;
    text-transform: uppercase;
}

section.hero img{
    width: 170px;
    filter: grayscale(1);
    margin-left: 46px;
    border: 1px solid black;
    border-radius: 50%;
}

section.content{
    display: grid;
    grid-template-columns: 55ch 45ch 26ch;
    gap: 60px;
    justify-content: center;
    align-items: start;
}

section.content > div{
    display: flex;
    flex-direction: column;
    border-left: 3px solid black;
    padding-left: 40px;
}

section.content h2{
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

section.content > div:nth-child(1) li{
    list-style-type: circle;
    margin-left: 20px;
}

section.content > div:nth-child(1) ul{
    margin-top: 14px;
}


section.content > div:nth-child(3) p{
    display: flex;
    flex-direction: column;
}

.play ul li,
.contact ul li{
    margin-bottom: 12px;
}

@media (max-width: 1350px){
    h1{
        font-size: 8vw;
    }
    
    section.content{
        display: grid;
        grid-template-columns: 55ch;
    }
    
    section.hero{
        margin-top: 40px;
    }
}

@media (max-width: 800px){
    section.hero{
        flex-direction: column;
        margin-top: 40px;
    }

    section.hero img{
        width: 140px;
        margin: 0;
    }

    body{
        gap: 60px;
        justify-content: flex-start;
    }

    section.content h2{
        font-size: 5vw;
    }
}

@media (max-width: 600px){
    section.content > div{
        border-left: none;
        padding-left: 0;
    }
    
    section.content{
        grid-template-columns: 1fr;
        padding: 0 40px;
    }
    
    section.hero img{
        width: 100px;
    }
}