main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    height: 100%;
    width: 100%;

    background-color: var(--primary-color);
}

main > section.logo{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 75%;
    height: 75%;
}
@media screen and (max-width: 950px) {
    main > section.logo{
        width: 100%;
        height: 100%;
    }
}

main > section.logo img{
    width: 100%;
}
