body{
    background-color:#dc143c ;
}

html {
    scroll-behavior: smooth;
  }
.anton-sc-regular {
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-style: normal;
    
  }

.nav-top{
    display:flex;
    justify-content: center;
    width:100%;
    h1{
        color:white;
        margin-right: 10px;
    }
  }

.nav-right{
    display:flex;
    width:100%;
}
.header{
    display:flex;
    justify-content: center;
    flex-direction:row;
    flex-wrap: wrap;
    margin-top: 10px;
}

h1{
    color:white;
}
.main-bar{
    display: flex;
    justify-content: center;
    margin-right: 5px;
    a{
        margin-right: 5px;
        text-decoration: none;
        color:white;
        transition-duration: 1s;
        margin-left: 5px;
        transition: 1s;
    }

    a:hover{
        transform: translateY(-1px);
    }
}

h1{
    animation-name: fadein;
    animation-duration: 0.5s;
    font-size:100px;
}
.container{
    width: 100%;
    
}

a{
    transition-duration: 1s;
    animation-name: fadein;
    animation-duration: 0.5s;
    font-size: 50px;
}
a:hover{
    transform: translateY(-5px);
}


p{
    font-size: 50px;
    color:white;
    animation-name: fadein;
    animation-duration: 0.5s;
}


@keyframes fadein {
    from{opacity: 0;margin-top:10px;};
    to{opacity: 1;margin-top: 0px;};
}

.room{
    min-width:400px;
    height:200px;
    border-radius: 5px;
    background-color: wheat;
    margin-left: 10px;
    transition-duration: 0.5s;
    cursor: pointer;
}

.carousel{
    width: 100%;
    display:flex;
    overflow-x: auto;
}

.profile-container{
    display:flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    flex-grow: 0px;
    p{
        margin-top: 0px;
        margin-bottom: 0px;
    }
}
.profile{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: aliceblue;
    background-size: cover;
    background-position: center;
    background-image: url(https://img.rec.net/cgmi2zo08uozv7514b2xknn5z.jpg?width=192&cropSquare=true);
}

@media only screen and (min-width: 600px) {
    .carousel{
        width: 100%;
        display:flex;
        justify-content: center;
        overflow-x: auto;
    }
  }

.room:hover{
}


.careerpath{
    cursor: pointer;
    width:700px;
    border-radius: 20px;
    height:100px;
    background-color:#C80036;
    text-align: center;
    font-size: 50px;

    transition-duration: 1s;
}


.careerpath:hover{
    transform: translateY(-5px);
}

button{
    cursor: pointer;
    font-size: x-large;
    background-color:#C80036 ;
    width: 500px;
    height: 100px;
    border-radius: 20px;
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-style: normal;
    color:white;
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0);
}

.space{
    margin-top: 100px;
}