* {
    box-sizing:border-box;
    padding: 0;
}

html {
    font-size: 100%;
}

body {
    margin: 0;
}

.headerImage{
    width: 100vw;
    height: auto;
}

h1 {
    font-family: 'Heavitas Regular', Arial, sans-serif;
    font-size: 2.6em;
    margin: 5%;
    color: #413519;
    text-align: center;
}

.windowDimensions {
    background-color: rgb(255, 245, 233);
    width: 12rem;
    padding-left: 1rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.displayContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.resizeAlert {
    background-color: aqua;
    width: 50vw;
    height: 20vh;
    font-size: 2rem;
    text-align: center;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visible {
    opacity: 1;
    animation: visibleAnimation 1s
}

@keyframes visibleAnimation {
    from {
        opacity: 0;
      }
    
      to {
        opacity: 1;
      }
}