.flex,
.row {
    display: flex;
    flex-wrap: wrap;
}

body {
    background-color: #101010;
    color: #eeeeee;
    font-family: Arial, Helvetica, sans-serif;

    margin-right: 20vw;
    margin-left: 20vw;
    margin-bottom: 50vh;
    margin-top: 20vh;
    width: min(600px, 75vw);
    
}

h1 {
    font-size: 32px;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

p {
    font-size: 16px;
    color: #dbdbdb;
}

.light {
    color: #c0e4fa;
}

a {
    color: #c0e4fa;
    text-decoration: underline dotted;
}

.star {
    position: fixed;
    width: 2.5px;
    height: 2.5px;
    background: #696969;
    z-index: -1;
}

@media only screen and (max-width: 850px) {
    body {
        margin-right: 5vw;
        margin-left: 5vw;
        width: 90vw;
    }
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #00000000;
}

::-webkit-scrollbar-thumb {
    background: #808080;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffffff;
}

img {
    width: 100%;
    border: 1px solid #808080;
}

/* to be used on body tag */
.lightTheme {
    background-color: #f0f0f0;
    color: #111111;
    
    
    p {
        color: #242424;
    }
    
    .light {
        color: #0064a2;
    }
    
    a {
        color: #0064a2;
    }
    
    .star {
        background: #969696;
    }
}

/* barrel roll animation */
.roll {
    animation-name: roll;
    animation-duration: 4s;
    animation-iteration-count: 1;
}

@keyframes roll {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

._cephalopod {
    margin: 5vh 0;
}

._cephalopod p {
    text-align: center;
    color: #a0a0a0;
    font-size: 12px;
    line-height: 1.25;
}
