@font-face
{
    font-family:"Fredoka";
    src: url("../fonts/FredokaOne-Regular.ttf") format("truetype");
}

html {
    height: 100vh;
    margin: 0;
    overflow: hidden;
    width: 100vw;
}

body
{
    background-color: #1A6895;
    background-image: url("../images/grid.png");
    height: 100%;
    margin: 0;
    overflow: hidden;
    width: 100%;
}

.main-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    width: 100%;
}


.main-container > h1 {
    font-family: "Fredoka", sans-serif;
    font-size: 96px;
    color: #ffae2a;
    letter-spacing: 4px;
    margin: 0;
    text-shadow: 4px 4px #111111;
}

.stores-container {
    align-items: center;
    background-color: #52abdb;
    border: dashed 4px #ffffff;
    border-radius: 8px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 8px 0 16px 0;
    padding: 24px;
    width: 400px;
}

.stores-container > button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    margin: 8px 0;
    width: calc(100% - 64px);
}

.stores-container > button > img {
    height: auto;
    width: 100%;
}

.stores-container > div {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 8px 0;
    width: 100%;
}

.stores-container > div > div {
    background-color: #ffffff;
    border-radius: 2px;
    height: 8px;
    margin: 0 8px;
    width: 32px;
}

.stores-container > div > p {
    color: #ffffff;
    font-family: "Fredoka", sans-serif;
    font-size: 28px;
    margin: 0;
}

.main-button {
    width: 100% !important;
}

.social-container {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    width: 400px;
}

.social-container > a {
    align-items: center;
    border-radius: 28px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    height: 56px;
    justify-content: center;
    margin: 0 4px;
    padding: 0;
    position: relative;
    width: 56px;
}

.social-container > a > img:nth-child(1) {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.social-container > a > img:nth-child(2) {
    height: 32px;
    margin-bottom: 2px;
    position: relative;
    width: 32px;
    z-index: 1;
}

@media screen and (max-width: 400px) {
    .main-container > h1 {
        font-size: 72px;
    }

    .stores-container {
        padding: 16px;
        width: calc(100% - 32px);
    }

    .stores-container > div > p {
        font-size: 24px;
    }

    .social-container {
        width: calc(100% - 32px);
    }
}

@media screen and (max-width: 320px) {
    .stores-container > div > p {
        font-size: 18px;
    }
}
