/* General Styles */

html, body {
    background-color: #E4E9EC;;
    font-family: "mendl-sans-dusk", sans-serif;
    font-weight: 800;
    font-style: normal;
    margin: 0;
    padding: 0;
    height: 100%;
    
}

/* Dropdown */
.dropdown-item a:link {
    color: black;
}

/* Body Container */
.body-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Content */
.content-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Welcome Title */
#welcome {
    text-align: center;
    text-shadow: 6px 6px 0px rgba(0, 0, 0, 0.2);
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Title Container */
#title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 10%;
}

h1 {
    color: black;
    
    font-size: 100pt;
    
    font-weight: bold;
    letter-spacing: 1.6px;
    cursor: default;
}

img {
    align-items: center;
    width: 220px;
    height: 220px;
    padding-left: 20px;
}

i {
    font-size: 30pt;
}

a:visited {
    color: white;
}

/* Buttons */
#start-button,
#already-button {
    display: inline-block;
    width: 450px;
    outline: none;
    cursor: pointer;
    font-size: 25px;
    line-height: 48px;
    border-radius: 300px;
    transition: background-color .4s, border-color .4s, color .4s, box-shadow .4s, filter .4s;
    border: 1px solid transparent;
    letter-spacing: 2px;
    min-width: 160px;
    font-weight: 700;
    text-align: center;
    padding: 0 48px;
    color: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

#start-button {
    background-color: #90bbe4;
    
}

#already-button {
    background-color: rgb(208, 25, 119);
    margin-top: 50px;
}

#start-button:hover {
    transform: scale(1.04);
    background-color: #004359;
}


#already-button:hover {
    transform: scale(1.04);
    background-color: #ed51e0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    h1 {
        font-size: 50pt;
    }

    img {
        width: 180px;
        height: 180px;
    }

    #start-button,
    #already-button {
        width: 300px;
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 35pt;
    }

    img {
        width: 100px;
        height: 100px;
    }

    #start-button,
    #already-button {
        width: 200px;
        font-size: 12px;
    }
}
