* {
    box-sizing: border-box;
    font-family: 'Permanent Marker', cursive;
}

@font-face {
    font-family: "Permanent Marker";
    src: url("../transfonter.org-20230719-200228/PermanentMarker-Regular.ttf") format("truetype"),
        url("../transfonter.org-20230719-200228/PermanentMarker-Regular.woff") format("woff");
}

body {
    margin: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 60vh;
    position: relative;
    width: 100%;
}

.answer-text,
.ask,
.comparison {
    display: flex;
    flex-direction: row;
    align-self: center;
    margin-left: 200px;
    margin-right: 200px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    top: 5px;
    color: #4244ab;
    font-size: 28px;
}

.nickname-form,
.country-form {
    display: flex;
    align-self: center;
    margin-top: 20px;
}

.main {
    display: flex;
    flex-direction: column;
}

.nickname-input,
.enter-btn-one,
.country-input,
.enter-btn-two {
    border-radius: 5px;
}

.enter-btn-one,
.enter-btn-two {
    color: #4244ab;
    margin-left: 10px;
}

.bottom-bar,
.score {
    display: flex;
    flex-direction: row;
    align-self: center;
    margin-top: 50px;
}

.score {
    font-size: 37px;
    color: #323232;
}

.return-block {
    margin-right: 30px;
    padding-top: 20px;
}

.further-block {
    margin-left: 30px;
    padding-top: 20px;
}

.menu-text {
    font-size: 30px;
    color: #323232;
    text-decoration: none;
}

@media (max-width: 912px) {
    .container {
        height: 10vh;
    }
}

@media (max-width: 540px) {
    .ask {
        margin-left: 70px;
        margin-right: 70px;
    }
}

@media (max-width: 431px) {
    .ask {
        margin-left: 30px;
        margin-right: 30px;
    }
}

@media (max-width: 360px) {
    .answer-text {
        margin-top: 80px;
    }
}

@media (max-width: 280px) {
    .further-block {
        margin-left: 10px;
    }

    .return-block {
        margin-right: 20px;
    }
}