@import url("https://fonts.googleapis.com/css?family=Muli&display=swap");
@import url("https://fonts.googleapis.com/css?family=Quicksand&display=swap");
body {
    background-image: linear-gradient(rgba(65, 63, 63, 0.692), transparent),
        url("./wallpaperflare.com_wallpaper.jpg");
    background-size: cover;
    width: 99%;
    height: 750px;
    background-repeat: no-repeat;
    background-blend-mode: darken, luminosity;
    font-family: "Muli", sans-serif;
}

button {
    background-color: rgb(59, 76, 44);
    width: 150px;
    height: 40px;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    color: #ffe8d6;
    transition: all ease-in-out 0.3s;
}
button:hover {
    background: rgb(125, 155, 99);
}

.buttons {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.card {
    width: 20%;
    border: 3px #ffe8d6 solid;
    height: 200px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

h1 {
    color: #ffe8d6;
    font-size: 19px;
}

a {
    text-decoration: none;
    width: 30%;
}
a .card {
    width: 90%;
}

.row{
    display: flex;
    width: 100%;
    justify-content: center;
}

.buttons-two{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: none;
}

@media screen and (max-width: 992px) {
    .buttons-two{
        display: flex;
    }
    .buttons{
        display: none;
    }
  }
  @media screen and (max-width: 1050px) {
    body{
        height: 700px;
    }
  }

.instructions{
    display: flex;
    justify-content: center;
    margin-top: 30px;
    height: 200px;
}
.instructions div{
    width: 70%;
    background-color: rgb(59, 76, 44);
    display: flex;
    justify-content: space-between;
    border-radius: 50px;
    flex-direction: column;
    align-items: center;
}
.instructions div h1, .instructions div h4{
    color: #ffe8d6;
}
.instructions div h1{
    font-size: 25px;
}
.instructions div div{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items:center
}
.instructions-text{
    height: 400px;
    display: flex;
    justify-content: space-between;
}