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


@media only screen and (max-height: 415px) {
    .main-title {
        font-size: 1rem;
    }
    
    .main-subtitle {
        font-size: 0.5rem;
    }

    .logo-title,
    .logo-subtitle {
        display: none;
    }
    .laptop-pillow {
        display: none;
    }

}


/* 🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶 */
/* 🔶🔶🔶core styling */
/* 🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶 */

body {
    font-family: "Raleway", sans-serif;
    background: #aeffab;
}

a {
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

p {
    font-family: 'Roboto', sans-serif;
}



li {
    list-style: none;
}

/* *padding top and bottom */
.py-1 {
    padding: 1.5rem 0;
}

.py-2 {
    padding: 2rem 0;
}

.py-3 {
    padding: 3rem 0;
}


/* buttons */
.buttons {
    display: flex;
}
.btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    border-radius: 50px;
    color: #333;
    transition: all 0.3s ease-in;
    
}

.btn:hover {
    box-shadow: inset 0 0 20px rgba(39, 39, 39, 0.5),
    0 0 20px rgba(187, 187, 187, 0.2);
    outline-color: rgba(41, 41, 41, 0);
    outline-offset: 15px;
    /* text-shadow: 1px 1px 2px #d8d8d8; */
}

.btn-fill {
    background: #EBC267;
    color: #333;
}


.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 1100px;
    height: 100vh;
    margin: auto;
    position: relative;
    text-align: center;
}






/* 🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶 */
/* 🔶🔶🔶nav */
/* 🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶 */

#navbar {
    padding: 2rem 0;
    /* background-color: thistle; */
}

.logo {
    width: 130px;
    padding: 1.0rem 0;
}


.logo-title {
    font-size: 1rem;
}

.logo-subtitle {
    font-size: 0.8rem;
}
.logo-title,
.logo-subtitle {
    color: #777;
}








/* 🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶 */
/* 🔶🔶🔶 main content */
/* 🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶 */

#main-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 70vh;
    align-items: center;
}


.main-title {
    font-weight: 600;
    font-size: 3rem;
}
.main-subtitle {
    font-weight: 400;
    font-size: 2rem;
}

.laptop-pillow {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1rem;
    z-index: -1;
    background-color: #aeffab;
}

.laptop-pillow-main {
    max-width: 500px;
    max-height: 300px;
}






/* 🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶 */
/* 🔶🔶🔶footer */
/* 🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶 */

#footer {
    padding-top: 6rem;
    background: #ECE2FF;
    /* padding: 2rem; */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-title {
    text-align: center;
    padding: 1rem 0;
    font-size: 0.8rem;
}


.footer-subtitle {
    font-size: 0.7rem;
}

.notice {
    color: rgb(164, 150, 190);
    padding: 4rem 1rem 1rem 1rem;
    font-weight: 100;
    font-size: 12px;
    max-width: 800px;
    text-align: center;
}