* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*actual css from here*/

.east-sea-dokdo-regular {
    font-family: "East Sea Dokdo", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body {
    background-color: rgb(125, 227, 252);
}

.navbar {
    position: sticky;
    font-family: 'East Sea Dokdo', sans-serif;
    background-color: rgb(125, 227, 252);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    font-size: 40px;
    width: 100vw;
    height: 10vh;
    box-shadow: 0px 0px 10px rgb(0, 0, 0);
}

.navitem {
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 10px 10px;
    text-decoration: none;
}

.container {
    height: 90vh;
    width: 100vw;
    font-family: 'East Sea Dokdo', sans-serif;
    padding: 2%;
    gap: 2%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    background-image: url(../Images/Image\ \(Ocean\ background\).png);
    background-repeat: no-repeat;
    background-position: center;
}   

.title {
    width: 20%;
    height: 15%;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 130%;
}

.subText {
    height: fit-content;
    width: 21%;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    color: white;
    text-align: center;
}

.contact {
    height: 70%;
    width: 30%;
    background-color: white;
    border-radius: 10%;
    gap: 5%;
    padding: 2%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.contactForm {
    width: 100%;
    height: 90%;
    gap: 1%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    font-family: 'East Sea Dokdo', sans-serif;
    font-size: 125%;
}

.contactForm input {
    font-family: 'East Sea Dokdo', sans-serif;
    width: 100%;
    padding-left: 2%;
}

.textfield {
    border: none;
    border-bottom: 1px solid black;
}

#formMessage {
    height: 100%;
    border-radius: 10px;
}

.terms {
    width: 100%;
    font-size: 75%;
    gap: 5%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

#termsConditions {
    width: 5%;
}

#submit {
    background-color: rgb(125, 227, 252);
    border-radius: 20px;
    height: 50%;
    border: none;
}