html {
    height: 100dvh; width: 100dvw;
    font-family: Tahoma, sans-serif;
}

head {
    display: none;
}

body {
    height: 100vh; width: 100vw;
    display: grid;
    overflow: hidden;
    background-image: url("");
    background:
  center / cover no-repeat
    url("../media/flyingBirds.jpg");
}

#mainContainer {
    display: flex;
    height: fit-content;
    width: fit-content;
    background-color: white;
    padding: 3vh;
    border-radius: 3vh;
    justify-self: center;
    align-self: center;
    flex-direction: row;
    gap: 2vw;
    align-items: center;
}

#mainContainer > img {
    padding-right: 2vh;
    border-right: solid black 2px;

}

#msgContainer > #msg {
    display: flex;
    flex-direction: column;

}

#msgContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#msgContainer > #msg > p {
    margin: 0.2vh;
    padding: 0;
width: 200px;
}

#msgContainer > #countdown {
    display: flex;
    align-self: center;
    font-size: 2em;

}

a {
    outline: none;
    border-bottom: solid black 2px;
    text-decoration: none;
    color: #90bae7;
}


footer {
    display: none;
}