﻿* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}


body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to top, #460218, #460218) fixed;
    color: white;
}

h1 { font-family: "Special Elite"; font-size: 24px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 26.4px; } h3 { font-family: "Special Elite"; font-size: 18px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 18px; } p { font-family: "Special Elite"; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 20px; } blockquote { font-family: "Special Elite"; font-size: 21px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 30px; } pre { font-family: "Special Elite"; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 18.5714px; }

.title {
    padding-top: 50px;
    padding-bottom: 12px;
    margin-left: 10%;
    font-size: 30px;
}

.header_links {
    font-weight: 100;
    font-size: 15px;
    margin-left: 10%;
}


.logoimg {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.posterimg {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    border: 5px solid #555;
}

.divider_line {
    background-color: black;
    height: 6px;
    margin-top: 6px;
}

.main_content {
    margin-left: 10%;
    margin-right: 10%;
    padding-top: 0px;
    font-weight: 100;
    font-size: 30px;
    
}

.start_screen {
    text-align: center;
    padding-top: 0px;
    margin-top: 0%;
}




.info_screen {
    font-family: "Special Elite"; font-size: 18px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 18px;
    text-align: left;
    font-weight: 100;
    color: beige;
    padding-bottom: 100px;
    
}

.instagram-media {
    padding-top: 0px;
    margin-top: 0%;
    align-content: center;
}


.button {
    background-color: #eb851f;
    padding: 10px 40px;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    animation: button_anim 1s;
    display: inline-block;
}

.button:hover {
    background-color: #f8a048;
}

.button:active {
    background-color: lightgray;
}

.category {
    background-color: dimgrey;
    padding: 40px 40px;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 10px;

    animation: button_anim 1s;
}

.category:hover {
    background-color: grey;
}
.category:active {
    background-color: lightgray;
}

/* Desktop */
@media (min-width:1600px) {
    .start_screen {
        margin-top: 20px;
        margin-left: 30%;
        margin-right: 30%;
    }
    .button {
        width: 200px;
    }
    .logoimg {
        width: 500px;
    }
    .posterimg {
        width: 50%;
    }
}


/* Desktop 2 */
@media (min-width:700px) and (max-width:1600px) {

    .button {
        width: 200px;
    }
    .logoimg {
        width: 400px;
    }
    .posterimg {
        width: 50%;
    }
}


/* Phone */
@media (min-width:400px) and (max-width:700px) {
    .start_screen {
        margin-top: 20px;
    }
    .button {
        width: 150px;
    }
    .logoimg {
        width: 300px;
    }
    .posterimg {
        width: 100%;
    }

}

/* Phone SMALL */
@media (min-width:0px) and (max-width:400px) {
    .start_screen {
        margin-top: 20px;
    }
    .button {
        width: 150px;
    }
    .logoimg {
        width: 200px;
    }
    .posterimg {
        width: 100%;
    }
    .main_content {
        margin-left: 2%;
        margin-right: 2%;
        padding-top: 0px;
        font-weight: 100;
        font-size: 30px;
        
    }
}

@keyframes button_anim {
    from {
        background-color: white;
    }

    to {
        background-color: dimgrey;
    }
}