* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    font-weight: 450;
    font-style: normal;
}

.main-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-content-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-content-container p {
    font-size: 18px;
    margin-bottom: 10px;  
}

.main-content-container p {
    color: #636363;
}

.main-content-container p a {
    text-decoration: none;
    color: #000000;
}

.main-content-container a:hover {
    color: #d1d1d1;
}

.header-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 50px;
    margin-bottom: 10px;
}

.header-container a {
    text-decoration: none;
    font-size: 15px;
    color: black;
}

.header-container button {
    border: none;
    padding: 0;
    background: none;
    font-size: 15px;
    cursor: pointer;
}

.header-container button:hover {
    color: #d1d1d1;
}

.header-container a:hover {
    color: #d1d1d1;
}

.icons-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    justify-content: space-between;
    margin: 0 75px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s;
}

.icon {
    width: 25px;
}

h1 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 5px;
}

.fade-in {
    opacity: 1;
    pointer-events: auto;
}