@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
    padding: 0;
    margin: 0;
    height: 100vh;
    overflow: hidden;
    background-image: url(../img/sun-sunlight-bright-outdoor-sky.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Poppins', sans-serif;
}

.cloud {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.8;
}

h1 {
    text-align: center;
    font-size: 100px;
    padding-top: 100px;
    color: #fff;
    font-weight: 800;
}

.menu {
    position: relative;
    display: flex;
    width: 500px;
    height: auto;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    z-index: 9999;
    border: 1px solid #cbd13b;
    outline: 10px solid #fff;
    padding: 50px;
    background-color: rgba(255, 255, 255, 1);
}

.menu h2 {
    text-align: center;
    font-size: 32px;
    color: #000;
    font-weight: 700;
}

.menu p {
    font-size: 18px;
    color: #000;
    font-weight: 400;
    margin-top: 0;
    text-align: center;
}

.menu a {
    font-size: 18px;
    color: #000;
    font-weight: 700;
}

@media (max-width: 320.98px) {
    h1 {
        font-size: 40px;
        padding: 30px 0;
        margin: 0;
    }
    .menu {
        width: auto;
        height: auto;
        outline: none;
        margin: 5px;
    }
    .menu h2 {
        font-size: 26px;
        color: #000;
        font-weight: 700;
    }
    .menu p {
        font-size: 15px;
        color: #000;
        font-weight: 400;
        margin-top: 0;
        text-align: center;
    }
    .cloud {
        display: none;
    }
}

@media(min-width: 321px) and (max-width: 575.98px) {
    h1 {
        font-size: 40px;
        padding-top: 60px;
    }
    .menu {
        width: auto;
        height: auto;
        outline: none;
        margin: 5px;
        padding: 50px 25px;
    }
    .cloud {
        display: none;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .menu {
        width: auto;
        height: auto;
        padding: 0;
        outline: none;
    }
    .cloud {
        display: none;
    }
    h1 {
        font-size: 45px;
        padding-top: 0;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    h1 {
        font-size: 80px;
    }
    .cloud {
        display: none;
    }
}