:root {
    --purple: #6a0dad;
    --brightPurple: #AD09D4;
    --highlight: #ffe066;
    --blue: #005dbb;
    --green: #00b300;
    --red: #ff0000;
    --gray: #474747;
}

@keyframes fadeSlideOut {
    to {
        opacity: 0;
        transform: translateY(-50px);
    }
}

.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #00000000;
    color: white;
    max-height: 500px;
    overflow: hidden;
}

#banner {
    position: relative;
    height: 500px;
    background-color: #00000000;
}

.aboutme {
    position: relative;
    width: 80%;
    height: min-content;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--purple);
    color: whitesmoke;
    border-radius: 10px;
    box-shadow: -10px 10px 10px rgba(0, 0, 0, 0.4);
    /* border: 2px solid red; */
}

.aboutme-title {
    font-size: 40px;
    text-align: center;
}

.aboutme-text {
    position: relative;
    /* width: 90%; */
    /* left: 5%; */
    font-size: 22.5px;
    line-height: 1.6;
    /* text-align: justify; */
    color: whitesmoke;
}

.contact {
    position: relative;
    width: 80%;
    height: min-content;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--purple);
    color: whitesmoke;
    border-radius: 10px;
    box-shadow: -10px 10px 10px rgba(0, 0, 0, 0.4);
}

.contact-title {
    font-size: 40px;
    text-align: center;
}

.contact-form {
    position: relative;
    /* width: 90%; */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background: none;
}

.contact-form label {
    font-size: 20px;
    color: whitesmoke;
    margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
    position: relative;
    background: none;
    border: none;
    color: whitesmoke;
    font-size: 20px;
    resize: none;
    border-bottom: 2px solid whitesmoke;
    transition: all 0.2s ease-in-out;
    height: 30px;
    margin-top: 10px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form input:hover,
.contact-form textarea:hover {
    border-color: var(--highlight);
    color: var(--highlight);
}

.contact-form-button {
    margin-top: 20px;
    width: 40%;
    left: 30%;
}

@media screen and (max-width: 460px) {

    .aboutme,
    .contact {
        padding: 10px;
    }

    .contact-form label,
    .contact-form input,
    .contact-form textarea,
    .aboutme-text {
        font-size: 18px;
    }


}