*{
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(253, 253, 253);
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

.back{
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px;
    display: flex;
    flex-direction: row-reverse;
    gap: 2px;
    align-items: center;
    justify-content: center;
    color: rgba(75, 126, 236, 0.7);
    font-size: 18px;
}

.back svg{
    width: 22px;
    height: 22px;
    display: inline-block;
    stroke-width: 2;
    vertical-align: middle;
}

.back:hover{
    cursor: pointer;
    color: rgba(75, 126, 236, 1);
}

.hero{
    width: 50vw;
    height: fit-content;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero h1{
    text-align: center;
    color: rgba(75, 126, 236, 0.7);
    font-size: 40px;
}

.about{
    position: fixed;
    bottom: 0;
    margin-bottom: 3vh;
    text-align: center;
    color: rgba(75, 126, 236, 0.7);
    font-size: 18px;
}

h4{
    font: italic 18px Arial, Helvetica, sans-serif;
    color: rgba(75, 126, 236, 0.7);
    font-weight: 100;
}