#title {
    position: relative;
    top: 4.5rem;
    left: 0%;
    width: 100%;
    font-size: 4rem;
    text-align: center;
}

#padding {
    position: absolute;
    left: 10%;
    top: 15rem;
    width: 80%;
    height: fit-content;
    border-radius: 3px;
    padding-bottom: 6rem;
    
}

#section {
    width: 100%;
    height: fit-content;
    background-color: black;
    border: 2px #4da6ff solid;
    border-radius: 3px;
}

#buttons {
    width: 100%;
    height: 4rem;
    border-bottom: 2px #4da6ff solid;
}

#buttons p {
    position: relative;
    top: -2rem;
    display: inline-block;
    width: 30%;
    height: 2rem;
    padding: 1rem calc(10% - 2px);
    text-align: center;
    font-size: 2rem;
}

#buttons p:hover {
    background-color: #000e23;
    color: #fff300;
}

#textContent {
    width: 80%;
    padding: 1rem 10%;
    text-align: center;
}

#textContent a {
    color: #4da6ff;
}

#textContent a:hover {
    color: #fff300;
}

@media (max-width: 500px) {
    #buttons p {
        font-size: 1.5rem;
        top: -1.5rem;
    }
}