*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html{
    scroll-behavior: smooth;
}

body{
    background: rgb(3, 80, 50);
}

.logo img{
    width: 100px;
    position: absolute;
}

header{
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(4, 100, 63);
    padding: 30px;
    gap: 600px;
}

header .navbar ul li{
    position: relative;
    float: left;
    margin-right: 20px;
}

header .navbar ul li a{
    font-weight: 600;
    padding: 10px;
    color: white;
    display: block;
}

header .navbar ul li a:hover{
    color: yellow;
    background: rgb(3, 80, 50);
    transition: .5s;
}

header .navbar ul li ul{
    position: absolute;
    left: 0;
    width: 200px;
    background: rgb(4, 100, 63);
    display: none;
    margin-top: 5px;
}

header .navbar ul li ul li{
    width: 100%;
}

header .navbar ul li ul li ul{
    left: 200px;
    top: 0;
    margin-top: 5px;
}

header .navbar ul li:focus-within > ul, 
header .navbar ul li:hover > ul{
    display: initial;
}

#menu-bar{
    display: none;
}

header label{
    font-weight: 600;
    color: white;
    cursor: pointer;
    display: none;
}

.content{
    padding: 50px;
    
}

.row{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
}  

.row .col-1 h1{
    color: yellow;
    font-size: 100px;
    margin: 20px;
}

.row .col-1 h2{
    color: white;
    margin: 20px;
}

.row .col-2 img{
    width: 400px;
}

button{
    width: 200px;
    padding: 20px;
    margin-top: 20px;
    margin-left: 20px;
    font-size: 20px;
    font-weight: 600;
    border: 1px solid yellow;
    background: transparent;
    color: yellow;
    border-radius: 5px;
    cursor: pointer;
}

button:hover{
    color: green;
    border: 1px solid green;
    transition: .5s;
}

.socmed{
    display: flex;
    align-items: center;
    color: white;
    font-size: 30px;
    gap: 20px;
    margin-left: 70px;
    margin-top: -30px;
    cursor: pointer;
    margin-bottom: 50px;
}

.fa-facebook:hover{
    color: rgb(50, 50, 199);
    transition: .5s ;
}

.fa-youtube:hover{
    color: red;
    transition: .5s ;
}

@media  screen and (max-width: 991px) {
    header{
        gap: 800px;
    }

    header label{
        display: initial;
    }
    
    header .navbar{
        width: 400px;
        position: absolute;
        top: 10%; left: 60%; right: 0;
        background: rgb(4, 100, 63);
        display: none;
        padding: 20px;
    }

    header .navbar ul li{
        width: 100%;
    }

    header .navbar ul li a{
        padding: 20px;
    }

    header .navbar ul li ul{
        position: relative;
        width: 100%;
    }

    header .navbar ul li ul li{
        background: rgb(4, 100, 63);
    }

    header .navbar ul li ul li ul{
        width: 100%;
        left: 0;
    }

    #menu-bar:checked ~ .navbar{
        display: initial;
    }

    .row{
        margin-top: 50px;
    }

    .row .col-1 h1{
        font-size: 50px;
    }
}

@media screen and (max-width: 450px) {

    header{
        font-size: 20px;
    }

    header label{
        display: initial;

    }
    
    header .navbar{
        width: 225px;
        position: absolute;
        top: 10%; left: 50%; right: 0;
        background: rgb(4, 100, 63);
        display: none;
        padding: 20px;
    }

    header .navbar ul li{
        width: 100%;
    }

    header .navbar ul li a{
        padding: 20px;
    }

    header .navbar ul li ul{
        position: relative;
        width: 100%;
    }

    header .navbar ul li ul li{
        background: rgb(4, 100, 63);
    }

    header .navbar ul li ul li ul{
        width: 100%;
        left: 0;
    }

    #menu-bar:checked ~ .navbar{
        display: initial;
    }

    header{
        width: 450px;
        gap: 300px;
    }

    .content{
        width: 450px;
        padding: 0;
    }

    .row{
        display: block;
        align-items: center;
        justify-content: center;
        margin-top: 100px;
    }

    .row .col-1 h1{
        font-size: 50px;
        text-align: center;
    }

    .col-2{
        display: none;
    }

    .socmed{
        margin-top: 20px;
        margin-left: 25px;
    }
}

