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

* {
    background-color: rgb(28, 28, 28);
    font-family: "Protest Strike";
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



nav {
    background-color: rgb(28, 28, 28);
    width: 30%;
    height: 10vh;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: rgb(211, 207, 207);
    font-size: 25px;
}

nav a:hover {
    color: gray;
    transition: 1s;
}

.container-fluid {
    width: 100%;
    height: 90vh;
    overflow-x: hidden;
}

h2 {
    padding: 0 0 0 30%;
    font-size: 20px;
}


.texty {
    color: whitesmoke;
    display: flex;
    flex-direction: column;
    padding: 13% 0 0 20%;
}

.row {
    height: 100%;
}

.aa {
    height: 100%;
    display: flex;
    align-items: end;
}

.button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 35px;
}

.button a {
    text-decoration: none !important;
    color: white !important;
    width: 25%;
    background-color: rgb(255, 122, 144);
    display: flex;
    justify-content: center;
    font-size: 30px;
    line-height: 2.5;
    border-radius: 20px;
}

.button a:hover {
    text-decoration: none;
    color: black !important;
    transition: 1.5s;
}

@media(max-width: 767px) {
    .aa {
        height: 100%;
    }
}