* {
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow-y: initial;
}

.dashboard-main {
    padding-top: 7vh;
    width: 100vw;
    min-height: 100vh;
    overflow: initial;
    display: grid;
    grid-template-columns: auto auto;
}

.stats {
    padding: 2em;
    display: flex;
    flex-direction: column;
    color: white;
    background-color: rgb(255, 65, 65);
    width: 60vw;
    height: cover;
}

.stats h1 {
    font-size: 2em;
    padding-bottom: 1em;
}

.links-card {
    width: 30vw;
    height: 35vh
}

.links {
    padding: 4em;
    display: grid;
    grid-template-columns: auto;
    place-content: start center;
    gap: 2em;
    width: 40vw;
    height: fill;
    background-color: rgb(238, 238, 238);
}

.links-text {
    font-size: 1.25em;
    padding: 1em;
}

.black {
    background-color: rgb(14, 14, 14);
    color: white;
    border: solid black 4px;
}

.white {
    color: black;
    background-color: white;
    border: solid black 4px;

}

.atlas-display {
    padding-top: 5vh;
    display: grid;
    grid-template-columns: auto auto;
    place-content: center;
    gap: 2em;
}

.atlas-card {
    padding: .5em;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: end;
    color: white;
    width: 21.25vw;
    height: fit-content;
    background-color: rgb(255, 65, 65);
    border: solid white 2px;
    transition: ease-in-out .2s;
}

.atlas-card a {
    color: white;
}

.datasets {
    padding-top: 5vw;
}

.remove {
    margin-bottom: .5vw;
}


.atlas-card p {
    border-top: solid white 1px;
    padding: .25em;
    width: 20vw;
}

.atlas-card:hover {
    background-color: white;
    color: rgb(255, 65, 65);
    border: solid white 2px;
}

.atlas-card:hover p {
    color: rgb(255, 65, 65);
    border-top: solid rgb(255, 65, 65) 1px;
}

.atlas-card:hover a,
.atlas-card:hover h2 {
    color: rgb(255, 65, 65);
}