
/*FlexBox Stuff*/
* {
    box-sizing: border-box;
    font-family: BoldPixels;
}

html {
    background-color: #4e273e;
}

body {
    display: flex;
    min-height: 40vh;
    max-width: 100vh;
    flex-direction: column;
    margin: auto;
}

#main {
    display: flex;
    flex: 1;
    flex-direction: column;
}

    #main > article {
        flex: 1;
    }

    #main > nav {
        order: -1;
    }

/*Visual CSS*/

@font-face {
    font-family: BoldPixels;
    src: url('BoldPixels.ttf') format('truetype');
}

footer, article, aside {
    padding: 1em;
}

header, footer {
    background: #da7372;
    height: 20vh;
}

div {
    background-color: #ffbc7d;
}



header {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    margin-top: 10%;
    padding-bottom: 2em;
}

    header img {
        max-width: 25vh;
        float: left;
        padding-left: 1em;
    }

    header h1 {
        text-align: center;
        padding-top: 2em;
    }

article h2 {
    text-align: center;
    border-bottom: 3px solid #4e273e;
}

footer {
    border-top: 5px solid #4e273e;
}

    footer div {
        border-radius: 25px;
        flex: 0;
        float: right;
        padding: 1em;
        padding-bottom: 2em;
    }

    footer img {
        max-width: 2em;
    }

/*Nav Bar*/
nav {
    background: #da7372;
    text-align: left;
    border-bottom: 5px solid #4e273e;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #da7372;
}

    ul li {
        float: right;
        margin-bottom: 1em;
    }

        ul li a {
            border-radius: 25px;
            display: block;
            color: black;
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
        }

            ul li a:hover {
                background-color: #4e273e;
                color: white;
            }
/*End Nav section*/

#main img {
    max-width: 80vh;
    margin: auto;
    margin-top: 10vh;
    margin-bottom: 10vh;
    border-radius: 25px;
    border: 5px solid #4e273e;
}

@media screen and (min-width: 576px) {
    #main {
        flex-direction: row;
    }

        #main > nav,
        #main > aside {
            flex: 0 0 20vw;
        }
}


/*Contact Form*/

.contact-container {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;

}

.contact-left {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.contact-left-title h2{
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 5px;
}

.contact-left-title hr {
    border: none;
    width: 300px;
    height: 5px;
    background-color: #4e273e;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-inputs {
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    border-radius: 50px;
}

.contact-left textarea{
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
}

.contact-inputs:focus {
    border: 2px solid #da7372;
}

.contact-inputs::placeholder {
    color: #797979;
}

.contact-left button{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: black;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: #da7372;
    cursor: pointer;
}

.contact-left button:focus{
    color: white; 
    background: #4e273e;
}

.contact-left button img{
    height: 15px;
}

@media (max-width:800px) {
    .contact-inputs{
        width: 80vw;
    }

}