* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

html{
    height: 100vh;
}

main{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.window {
    width: calc(100% - 18px);
    max-width: 320px;
    max-height: 500px;
}

.window__container {
    width: 100%;
    height: 100%;
    background-color: #EDEDED;
    border-radius: 20px;
    padding-top: 1px;
}

.logo{
    margin-top: 30px;
}

.logo__link{
    display: flex;
    align-items: center;
}

.logo__link img{
    width: 110px;
    height: auto;
}

.logo__name{
    font-family: "BalsamqSans", sans-serif;
    font-size: 19px !important;
    color: royalblue;
}

.logo__context{
    font-size: 15px;
    color: royalblue;
    margin-left: 3px;
    font-family: "RobotoFlex", sans-serif;
}

@font-face {
    font-family: "BalsamqSans";
    src: url("/fonts/BalsamiqSans-Regular.ttf") format("truetype");

    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "RobotoFlex";
    src: url("/fonts/RobotoFlex.ttf") format("truetype");

    font-weight: normal;
    font-style: normal;
}