@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

::selection {
    background-color: #4a6344;
    color: #ffffff;
}

body {
    font-family: Montserrat, Arial, sans-serif;
    background-color: #b8d3b2;
    text-align: center;
    max-width: 85%;
    margin: 0 auto;
}

.section, header, main, footer {
    background-color: #98bb97;
    padding: 20px;
    border-radius: 5px;
    margin-top: 10px;
}

.links-container {
    display: flex;
    flex-direction: column;
}

.subdomain-link {
    color: #000000;
    text-decoration: none;
    background-color: #759674;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: .3s all;
}

.subdomain-link:last-child {
    margin-bottom: 0px;
}

.subdomain-link:hover {
    background-color: #4c6b4b;
    color: #ffffff;
    transition: .3s all;
}
