/*
    Theme Name: Morning Owls - Base
    Theme URI: https://morningowls.com
    Author: Morning Owls Web Development
    Author URI: https://morningowls.com
    Version: 1.0.2 alpha
    Description: An advanced custom website with up to three pages, an email sign-up, and X dynamic post-types which could be used as a blog, products, workshops, events, or services.
    Tags: responsive, custom-build, email-signup
*/

@font-face {
    font-family: dancing;
    src: url(img/Dancing_Script/DancingScript-VariableFont_wght.ttf);
}

@font-face {
    font-family: roboto;
    src: url(img/Roboto/Roboto-Regular.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.75em;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #573c6b;
    color: #000;
}

h1,
p {
    color: #fff;
}

p {
    font-family: roboto;
    letter-spacing: 1px;
    text-shadow: 1px 1px 1px #000;
    font-size: clamp(1rem, 0.9554rem + 0.2038vw, 1.2rem);
    margin-bottom: 3rem;
}

/* .content {
    position: relative;
    background-image: url("./img/Music Notes-2.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center 50%;
    height: 100vh;
    text-align: center;
} */

.center {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    width: 80%;
    min-width: 456px;
    text-align: center;
    justify-content: center;
    margin: auto;
}

.logo {
    width: clamp(12.5rem, 11.1067rem + 6.3694vw, 18.75rem);
    margin: auto;
}

.text {
    font-family: dancing;
    font-size: clamp(2.5rem, 2.4331rem + 0.3057vw, 2.8rem);
    margin-bottom: 0;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 1rem;
    /* margin: -50px auto 30px; */
    line-height: clamp(2.9rem, 2.7662rem + 0.6115vw, 3.5rem);
}

.button {
    width: 60%;
    font-family: roboto;
    text-decoration: none;
    color: #fff;
    background-color: #27817f;
    font-size: clamp(1.55rem, 1.5054rem + 0.2038vw, 1.75rem);
    border: 1px solid #fff;
    border-radius: 20px;
    padding: 10px 15px;
    transition: 0.3s;
}

.button:hover {
    background-color: #573c6b;
}

@media screen and (max-width: 650px) {
    .content {
        background-position: center 40%;
        background-size: 160%;
        oerflow: hidden;
    }
    .center {
        min-width: 350px;
    }
}

@media screen and (max-width: 500px) {
    .center {
        min-width: 300px;
    }
    .text {
        margin-top: 20px;
    }
}