/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 48px;
    line-height: 44px;
    color: #EDB4E2;
    background-color: #EDB4E2;
    background-image: url(photo-1602498456745-e9503b30470b.jpeg);
    background-size: contain;
    background-repeat: no-repeat;
    background-size: cover;

}

header {
    width: 100%;
    height: 150 px;
    padding: 20px;
    /*position: fixed;*/
}


nav{
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 22px;
    color: #000;
}

nav ul li {
    display: inline-block;
    margin-right: 30px;
    font-size: 12px;
}
nav a{
    color: rgb(134, 59, 184);
    font-size: 1.0em;
}
nav a:hover{
    color: rgb(232, 227, 235);
}

#banner{
    background-image: url(../img/dancebanner.png);
    width: auto;
    height: 30vh;
    background-size:contain;
    background-position: center top;
    text-align: center;
}

main, footer {
    padding: 20px;
}
main p {
    position: relative;
    margin: 0 auto;
    max-width: 60ch;
    font-size: 15px;
}
main{
    background-color: #EDB4E2;
    padding-top: 70px;
    font-size: 12px;
    color: black;
}
footer{
background-color: transparent;
color: black;
font-family: 'Times New Roman', Times, serif;
font-size: 15px;
font-style: normal;
font-weight: 700;
line-height: 150%; /* 22.5px */
letter-spacing: -0.285px;
}

/* Styling the Forms */

input[type=text],
input[type=password],
input[type=submit],
textarea {
    display: block;
    padding: 10px;
    border:1px solid purple;
    margin-bottom: 16px;
    border-radius: 10px;
    width: 260px;
}

.gallery {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(150px, 1fr) );
    gap: 22px;
    background-color:#DB83CE;
    text-align: center;
    font-size: 15px;
}

#title-box{
    position: relative;
    color: rgb(95, 13, 99);
    font-family: "Beth Ellen", cursive;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.beth-ellen-regular {
    font-family: "Beth Ellen", cursive;
    font-weight: 400;
    font-style: normal;
  }

#subtitle{
    color: #000;
    font-family: "Bellefair", serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.bellefair-regular {
    font-family: "Bellefair", serif;
    font-weight: 400;
    font-style: normal;
  }

#about {
background-color:#DB83CE;
color: #000;
font-family: Bellefair;
font-size: 24px;
font-style: normal;
font-weight: lighter;
line-height: normal;
text-align:left;
margin-top: -4ch;
margin-bottom: 4ch;
text-align: center;
}

#interests {
    color: #000;
font-family: Bellefair;
font-size: 24px;
font-style: normal;
font-weight: lighter;
line-height: normal;
background-color: #DB83CE;
text-align: center;
}

#photos {
color: #000;
font-family: Bellefair;
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

button{
    border-radius: 20px;
    padding: 20px 30px;
    background-color: #D9D9D9;
    margin-top: 20vh;
    border: none;
}

h1{
    font-weight: lighter;
}

h2{
    font-weight: lighter;
}

#contact{
    color: #000;
    font-family: Bellefair;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 800px;
    margin: 0 auto;
    justify-items: center;
}

@media screen and (max-width: 200px) {
    nav{
        left: 0px;
    }
}

nav a{
    font-size: 1.5em;
}

