* {
    margin: 0px;
    padding: 0px;
    user-select: none;
}

body {
    margin: 0px;
    padding: 0px;
    display: flex;
    overflow-x: hidden;
    justify-content: center;
    background-color: black;
    background-image: url("./img/GGT_2022.jpg");
    background-repeat: repeat;
    
}

.logo {
    display: flex;
    position: absolute;
    margin: 2rem 0rem;
}

.formSelection {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    margin: 15rem 0rem;
    width: 60%;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid white;
    border-radius: 15px;
}

.formWrapper {
    display: flex;
    justify-content: center;
    position: relative;
    width: 550px;
    margin: 2rem;
}

.formWrapper a {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    margin: 0px;
    transition: 1s all;
    z-index: 2;
}

.formWrapper p {
    display: flex;
    position: absolute;
    color: white;
    text-decoration: none;
    font-size: 3rem;
    font-family: sans-serif;
    font-weight: bold;
    -webkit-text-stroke: 2px black;
}

.formWrapper img {
    width: 550px;
    border-radius: 20px;
    z-index: 0;
}

.formWrapper a:hover {
    transition: 1s all;
    scale: 1.1;
}

@media only screen and (max-width: 950px) {
    .formWrapper img {
        width: 400px;
        border-radius: 20px;
        z-index: 0;
    }
    .formWrapper p {
        font-size: 2.2rem;
    }
}

@media only screen and (max-width: 760px) {
    .formWrapper img {
        width: 300px;
        border-radius: 20px;
        z-index: 0;
    }
    .formWrapper p {
        font-size: 1.5rem;
        -webkit-text-stroke: 1px black;
    }
}

@media only screen and (max-width: 610px) {
    .logo {
        width: 60%;
    }
    .formSelection {
        margin: 10rem 0rem;
    }
    .formWrapper {
        margin: 1rem 0rem;
    }
    .formWrapper img {
        width: 300px;
        border-radius: 20px;
        z-index: 0;
    }
    .formWrapper p {
        font-size: 1.5rem;
        -webkit-text-stroke: 1px black;
    }
}

@media only screen and (max-width: 500px) {
    .logo {
        width: 60%;
    }
    .formSelection {
        width: 90%;
        margin: 10rem 0rem;
    }
    .formWrapper img {
        width: 200px;
        border-radius: 20px;
        z-index: 0;
    }

    .formWrapper p {
        font-size: 1.1rem;
        -webkit-text-stroke: 1px black;
    }
}


@media only screen and (max-width: 400px) {
    body {
        max-width: 100%;
    }
    .logo {
        width: 90%;
        left: 15%;
    }
    .formSelection {
        width: 90%;
        margin: 10rem 0rem;
        left: 15%;
    }
    .formWrapper img {
        width: 200px;
        border-radius: 20px;
        z-index: 0;
    }
    .formWrapper p {
        font-size: 1.1rem;
        -webkit-text-stroke: 1px black;
    }
}