@font-face {
    font-family: 'tempting';
    src: url(fonts/Tempting.ttf);
}

@font-face {
    font-family: 'market_deco';
    src: url(fonts/Market_Deco.ttf);
}


*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family:'Times New Roman', Times, serif
    
}

body {
    text-align: center;
    background-color: #E3D7D0;
    min-width: 300px;
}

.showcase .info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.info{
    width: 75%;
}

.cover_photo img{
    display: block;
    margin: auto;
    max-width: 600px;
    width: 80%;
}

h1{
    font-family: 'tempting', sans-serif;
    font-weight: 50;
    font-size: 2em;
    padding: 20px 0px;
    color: #4A8B7C;
}

h2{
    font-family: 'tempting', sans-serif;
    font-weight: 50;
    font-size: 1.5;
    color: #4A8B7C;
}

h3{
    font-family: 'market_deco', sans-serif;
    font-weight: 50;
    font-size: .75em;
    color: #0178C4;
}

p{
    font-family: 'market_deco', sans-serif;
    font-weight: 50;
    font-size: .75em;
    color: #0178C4;
    margin-bottom: 25px;
}

a{
    margin-top: 25px;
    padding: 10px 10px;
    background-color: #4A8B7C;
    border-radius: 15px;
    color: white;
    cursor: pointer;
}

.logo img{
    height: 75px;
    width: 75px;
    margin-top: 50px;
}

@media screen and (max-width: 900px){
    .cover_photo{
        padding-top: 50px;
    }

    .infoSection{
        padding: 10px;
    }
    
    *{
        font-size: clamp(5vw, 5vw, 2em);
    }
}

@media screen and (min-width: 900px){
    .body{
        overflow: hidden;
    }

    .showcase{
        display: flex;
        flex-direction: row;
        width: 100%;
    }

    .column{
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        width: 100%;
    }

    .info{
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100vh;
        justify-content: center;
        align-items: center;
    }

    .infoSection{
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        padding: 25px 25px;
    }

    a{
        width: 50%;
        align-self: center;
    }

    *{
        font-size: clamp(5px, 2vw, 1.1em);
    }
}