

.logo {
    width: 100%;
    height: 300px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 40%;
}

h1 {
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

.page-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 50px;
}

.border-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 30px;
    border: 3px solid #E98A15;
    border-radius: 20px;
}

ul li {
    margin-bottom: 20px;
}

li::marker {
    color: #E98A15;
}

p.contact {
    font-size: 20px;
    text-align: center;
}

a {
    color: #E98A15;
    font-weight: bold;
    font-size: 20px;
}

a:hover {
    color: #E98A15;
    text-decoration: none;
}


@media screen and (max-width: 1100px) {
    .logo img {
        width: 60%;
    }

    .border-content {
        width: 80%;
    }
}

@media screen and (max-width: 700px) {
    .logo img {
        width: 80%;
    }
}