@font-face {
    font-family: "GirlTalk";
    src: url("../Fonts/GirlTalk.otf");
}

@font-face {
    font-family: "PinkLemon";
    src: url("../Fonts/PinkLemon.otf");
}

@font-face {
    font-family: "Sunkissed";
    src: url("../Fonts/Sunkissed.otf");
}

html {
    font-family: "Nunito Sans", sans-serif;
    font-weight: SemiBold;
}

#content-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

h1 {
  font-family: "Sunkissed";
  font-weight: normal;
  font-size: 50pt;
  color: #126A7A;
  margin: 0;
}

p {
    font-size: 15pt;
    width: 85%;
}

h2 {
  font-family: "Sunkissed";
  font-weight: normal;
  font-size: 5vw;
  color: #FFFFFF;
  margin: 0;
}


body {
    background-color: #EEDADA;
    width: 100%;
    margin: 0;
    height: 100%;
    min-height: 100%;
}

.header {
    display: flex;
    width: 84%;
    height: 100%;
    justify-self: center;
    justify-content: center;
    margin-bottom: 5%;
    margin-top: 15px;
    align-items: center;
    background-color: #E86A8D;
    align-self: center;
}

.header img {
    width: 75%;
}

a {
    text-decoration: none;
    color: #126A7A;
}

.main-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    justify-self: center;
}

.content-box {
    display: flex;
    background-color:#F3D0D0;
    width: 84%;
    margin-bottom: 15px;
    padding-top: 2%;
    padding-bottom: 2%;
    justify-content: center;
    align-items: center;
}

.content-box img {
    max-width: 100%;
}

.content-box2 {
    display: flex;
    background-color:#E599A7;
    width: 84%;
    margin-bottom: 15px;
    padding-top: 2%;
    padding-bottom: 2%;
    justify-content: center;
    align-items: center;
}

.content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 95%;
}

.widget-container {
    width: 100%;
}

.vert-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    max-width: fit-content;
}

#full-box {
    width: 100%;
    max-width: 100%;
}

#full-box h1 {
    padding: 10px;
    align-self: center;
}

.vert-box img {
    width: 35vw;
}

.vert-box .img-small {
    width: 18vw;
}

.vert-box p {
    width: 100%;
}

.content-box2 .vert-box {
    max-width: 60%;
}

.insta-container {
    align-self: center;
    justify-self: center;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.nav-button {
    font-family: "PinkLemon";
    background-color: #126A7A;
    
    color: #FFFFFF;
    transition: ease-in-out 0.25s;
    border-radius: 15px;
    font-size: 30pt;
    width: fit-content;
    padding-top: 1.5%;
    padding-bottom: 1.5%;
    padding-left: 8%;
    padding-right: 8%;
    margin-top: 1%;
    cursor: pointer;
}

.frame {
    background-color: #FFF0F5;
    padding: 15px;
    border-radius: 25px;
    width: 75%;
}

.nav-button:hover {
    transform: translateY(-5px);
}

.text-box {
    width: 84%;
}

.text-box p {
    width: 100%;
    padding-left: 2%;
}

.footer {
    display: flex;
    background-color: #E26A8C;
    width: 84%;
    margin-top: 1%;
    justify-content: space-between;
    justify-self: center;
    align-self: center;
}

.footer p {
    color: #FFFFFF;
    width: fit-content;
    padding-left: 2%;
}

.social-bar {
    width: 50%;
    display: flex;
    justify-content: right;
    padding-right: 2%;
}

.social-bar img {
    width: 45px;
    height: 45px;
    align-self: center;
    margin-left: 2%;
    margin-right: 2%;
}

.social-bar p {
    align-self: center;
    margin-right: 1%;
}

.social-bar button {
    all: unset;
    padding: 10px;
    cursor: pointer;
}

@media screen and (max-width: 1000px) {

    .header {
        width: 100%;
    }

    .vert-box {
        width: 100%;
    }
    
    .content-box {
        width: 100%;
    }

    .content-box2 {
        width: 100%;
    }

    .footer {
        width: 100%;
    }
}   