@import url('https://fonts.googleapis.com/css2?family=Yeseva+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat&display=swap');

body {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: black;
    font-family: 'Yeseva One', serif;
    box-sizing: border-box;

}


main {
    width: 100%;
    height: 96vh;
}

main .landingpage {
    background-image: url(../images/background.jpg);
    background-size: 40%;
    background-position: center top 20%;
    background-repeat: no-repeat;
}


main .header {
    font-family: 'Caveat', cursive;
    width: auto;
    height: 100vh;
    display: flex;
}


main .header ul {
    margin: auto;
}

main .header ul li {
    list-style: none;
    display: inline;
    margin: 0 4rem;
}

main .header li a {
    width: auto;
    height: auto;
    text-decoration: none;
    color: white;
    font-size: 27px;
    border-radius: 20px;
    opacity: 0.5;
    padding: 5px 12px;
    text-align: center;
    cursor: pointer;
    transition: 1s ease;
}

main .header li a:hover {
    opacity: 1;
}

main .links{
    display: flex-box;
    position: absolute;
    top: calc(40%);
    left: -6%;
    background-color: rgb(165, 162, 162);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    
}

main .links div{
    display: flex-box;
}

main .links div a{
    display: flex;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 20px 10px;
    width: 150px;
    height: auto;
    float: right;
    background-color: rgb(165, 162, 162);
    justify-content:space-between;
    color: wheat;
    text-decoration: none;
    transition: 1s ease;
}

main .links div a:hover{
    transform: translateX(105px);
}

main .links div img{
    
    width: 1.5rem;
    margin-left: 10px;
}




footer p {
    
    font-size: 13px;
    text-align: center;
}

footer p span {
    color: #695757;
}


@media screen and (max-width:450px) {
    body {
        max-width: 100%;
        height: 100%;
    }

    main .landingpage {
        background-size: 100%;
    }

    main .landingpage .header {

        width: 100%;
        margin: 0;
        padding: 0;
    }

    main .landingpage .header ul {
        display: flex;
        margin: auto;
        justify-content: center;

    }

    main .landingpage .header ul li {
        display: flex;
        position: relative;
        max-width: fit-content;
        margin: 150px 0 0 0;
        padding: 0;
    }

    main .landingpage .header ul a {
        font-size: 16px;
    }
    
    main .links{
        display: none;
    }
}


@media screen and (min-width: 451px) and (max-width:800px) {


    main .landingpage {
        background-size: 70%;
    }

    main .landingpage .header ul {
        display: flex;
        margin: auto;
        justify-content: center;
    }


    main .landingpage .header ul li {
        display: flex;
        position: relative;
        max-width: fit-content;
        margin: 250px 0 0 0;
        padding: 0;
    }

    main .landingpage .header ul a {
        font-size: 25px;
    }

    main .links{
        display: none;
    }

}

@media screen and (min-width: 800px) and (max-width:1500px) {
    main .landingpage .header ul {
        display: flex;
        margin: auto;
        justify-content: center;
    }


    main .landingpage .header ul li {
        display: flex;
        position: relative;
        max-width: fit-content;
        margin: 400px 0 0;
        padding: 0;
    }

    main .landingpage .header ul a {
        font-size: 25px;
        padding: 0 50px;
    }

    
}
