* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0 auto;
    padding: 0;
    background-color: #103784;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}

.main {
    width: 90vw;
    margin: 0 auto;
    max-width: 480px;
}

header {
    width: 100vw;
    color: #f7cf1f;
    background-color: #103784;
    text-align: center;
    padding: 10px 10px;
    font-weight: bold;
    font-size: 1.8em;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.news {
    text-align: center;
    padding: 20px 20px;
    margin-top: 10px;
    font-size: 2em;
    font-weight: bold;
    background-color: black;
    color: white;

}

.middle-box {
    text-align: center;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    max-width: 480px;
}

.reservations {
    padding: 20px 10px;
    background-color: white;
}

img {
    max-width: 480px;
    border: 1px solid white;
    text-align: center;
    margin-bottom: 10px;
}

.info {
    display: flex;
    justify-content: center;
    max-width: 480px;
    margin-top: 20px;


}

.info > ul {
    list-style-type: none;
    text-align: left;
    font-weight: bold;
}

.box {
    width: 50%;
    background-color:#d33b27;
    color: white;
    align-items: center;
    padding: 20px;
}

.first {

    font-size: 1.5em;
    padding-left: 30px;
}

.contact-list {
    list-style-type: none;
    font-weight: bold;
}

.contact {
    display: flex;
    flex-direction: column;
}

.text {
    background-color: white;
    padding: 20px 10px;
}

.contact > p {
    padding-bottom: 10px;
}

footer {
    text-align: center;
    background-color: slategray;
    padding: 10px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    img {
        max-width: 90vw;
    }

    .box {
        align-items: center;
        min-height: 100px;
    }

    .second {
        white-space: nowrap;
        align-self: center;
        min-height: 100%;
    }

    .first {
        font-size: 1.2em;
        min-height: 100%;
    }
}