#header-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: rgb(82, 77, 77); 
    
}

body {
    margin: 0 auto;
    padding: 0;
    background-color: #0f0e0e;
}

#logo {
    width: 70%;
}

#buttons {
    text-align: center;
    display: flex;
    align-items: center;
}

 a {
    width: fit-content;
    text-decoration: none;
    margin: 0px;
    padding: 0px;
    
}

.buttons {
    font-size: large;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1.3px;
    text-decoration: none;
    color: aliceblue;
    transition: 0.5s;
    margin-left: 15%;
}


.buttons:hover {
    color: rgb(184, 72, 72);
    transition: 0,5s;
}

button:active {
    background-color: #bd6262;
    transform: translateY(4px);
}

@media (max-width: 700px) {
    button {
        height: 10%;
        width: 20%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 10%;
        margin-left: 34%;
    }
}

#desc {
    font-family: 'Poppins', sans-serif;
    margin-top: 0px;
    margin: 0 auto;
    width: 70%;
    height: 50%;
    color: #d1d1d1;
    font-size: 20px;
}

#title {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    margin: 0;
}

#title p {
    color: #d1d1d1;
    font-size: 100px;
    padding-top: 50px;
    margin: 0px;
    font-family: 'Poppins', sans-serif;
}