body
{
    margin: 0px;
    padding: 0px;
    background-color: #0079e0;
}

#container
{
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#main
{
    padding-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.hero-logo
{
    width: 500px;
}

.hero-copy
{
    font-family: "Karla", sans-serif;
    width: 380px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
    color: #F8E9DF;
}

#socials
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    row-gap: 0px;
}

.social-link
{
    color: #F8E9DF;
    text-decoration: none;
    transition: color 0.15s linear;
    font-family: "Karla", sans-serif;
    font-size: 20px;
    font-weight: 800;
    font-style: normal;
    margin-bottom: -20px;
}

.social-link:hover
{
    color: #D5C9C3;
}

.copy-link
{
    color: #F8E9DF;
    text-decoration: none;
    transition: color 0.15s linear;
    font-family: "Karla", sans-serif;
}

.copy-link:hover
{
    color: #D5C9C3;
}

.block
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 30px;
}

.image-grid
{
    width: 770px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.screenshot
{
    max-width: 250px;
    border-radius: 10px;
}

img
{
    height: auto;
}

.copy
{
    font-family: "Karla", sans-serif;
    width: 500px;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    color: #F8E9DF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.copy-title
{
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.features
{
    text-align: left;
    margin: 0px;
    line-height: 120%;
}

#footer
{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Karla", sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    color: #F8E9DF;
    padding-top: 30px;
    padding-bottom: 30px;
}

#logo
{
    color: #F8E9DF;
}

@media screen and (max-width: 799px)
{
    #main
    {
        max-width: 100vw;
    }

    .hero-logo
    {
        max-width: 100%;
    }

    .hero-copy
    {
        max-width: 90%;
    }

    .copy
    {
        max-width: 100%;
    }

    .block
    {
        max-width: 100%;
    }
    
    .image-grid
    {
        max-width: 100%;
    }

    .screenshot
    {
        width: calc(50% - 20px);
    }
}